home *** CD-ROM | disk | FTP | other *** search
- global hiliterect, returnflag, endSprite
-
- on prepareMovie
- set hiliterect to 49
- set returnflag to 0
- end
-
- on startMovie
- global returnlist
- set returnlist to value(field "Index Location")
- if getProp(returnlist, #flag) = 1 then
- go(getProp(returnlist, #framenumber) && "Menu")
- end if
- end
-
- on initcursor
- set mycursor to the number of member "hand"
- set mycursormask to the number of member "hand mask"
- set the cursor of sprite hiliterect to [mycursor, mycursormask]
- end
-
- on changecursor direction
- set mycursor to the number of member direction
- set mycursormask to the number of member (direction & "Mask")
- cursor([mycursor, mycursormask])
- end
-
- on scrollpictup step
- global spriteNum
- if the top of sprite 2 < 121 then
- changecursor("Up")
- set the locV of sprite 2 to the locV of sprite 2 + step
- repeat with spriteNum = 2 to endSprite - 1
- setlistposition()
- end repeat
- else
- cursor(-1)
- end if
- end
-
- on scrollpictdown step
- global spriteNum
- if the bottom of sprite endSprite > 422 then
- changecursor("Down")
- set the locV of sprite 2 to the locV of sprite 2 - step
- repeat with spriteNum = 2 to endSprite - 1
- setlistposition()
- end repeat
- else
- cursor(-1)
- end if
- end
-
- on setlistposition
- global spriteNum
- set cnum1 to the memberNum of sprite spriteNum
- set cnum2 to the memberNum of sprite spriteNum + 1
- set the locV of sprite (spriteNum + 1) to the locV of sprite spriteNum + (the height of member cnum1 + 5)
- end
-
- on switchmethod
- set returnflag to 0
- repeat with spriteNum = 2 to endSprite
- puppetSprite(spriteNum, 0)
- end repeat
- puppetSprite(roomcontentsprite, 0)
- puppetSprite(45, 0)
- set mouseovermember to the name of the mouseMember
- go(mouseovermember && "Menu")
- end
-
- on toexitmenu
- puppetSprite(45, 1)
- go("Exit")
- end
-
- on stopMovie
- gobackpath()
- end
-
- on toobjectmovie newfile
- global currlabel
- put "[#FrameNumber:" && QUOTE & currlabel & QUOTE & ", #Text:" && the locV of sprite 2 & ", #Flag: 1]" into field "Index Location"
- put newfile into field "Current Object"
- go(1, "Object")
- end
-